home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / search.dxr / 00035_free find text entry score script.ls < prev    next >
Encoding:
Text File  |  2000-01-18  |  397 b   |  17 lines

  1. on keyDown
  2.   global gSearchObj
  3.   if the key = RETURN then
  4.     poppedMenu = getPoppedMenu(getMenuBankObj(gSearchObj))
  5.     if objectp(poppedMenu) then
  6.       performFunction(poppedMenu)
  7.     end if
  8.     dontPassEvent()
  9.   else
  10.     if the commandDown and the shiftDown and (the key = "/") then
  11.       alert(string(getMenuBankObj(gSearchObj).pBankStatusList))
  12.     else
  13.       pass()
  14.     end if
  15.   end if
  16. end
  17.